home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Essentials / Developer Essentials May91 / MPW Interfaces & Libraries 3.2 / AIncludes / HyperXCmd.a < prev    next >
Encoding:
Text File  |  1991-04-17  |  728 b   |  37 lines  |  [TEXT/MPS ]

  1. ; Version: 3
  2. ; Created: Friday, October 20, 1989 at 9:31:00 PM
  3. ;
  4. ; File: HyperXCmd.a
  5. ;
  6. ; Assembler Interface to the Macintosh Libraries
  7. ; Copyright Apple Computer, Inc. 1988
  8. ; All Rights Reserved
  9. ;
  10. ;--------------------------------------------------------------------
  11.     IF &TYPE('__IncludingHyperXCmd__') = 'UNDEFINED' THEN
  12. __IncludingHyperXCmd__    SET    1
  13.  
  14. ;  result codes
  15.  
  16.  
  17. xresSucc          EQU         0
  18. xresFail          EQU         1
  19. xresNotImp        EQU         2
  20.  
  21. ; XCmdBlock Record
  22.  
  23. XCmdBlock         RECORD      0
  24. paramCount        DS.W        1
  25. params            DS.L        16
  26. returnValue       DS.L        1
  27. passFlag          DS.B        1
  28.                   DS.B        1
  29. entryPoint        DS.L        1
  30. request           DS.W        1
  31. result            DS.W        1
  32. inArgs            DS.L        8
  33. outArgs           DS.L        4
  34. xCmdBlockEnd      EQU         *
  35.                   ENDR
  36.  
  37.     ENDIF    ; ...already included